home *** CD-ROM | disk | FTP | other *** search
/ Macwelt 1 / Macwelt DVD 1.toast / Software für Mac-OS X / Entwickler-Tools / netbeans / modules / ext / djava.jar / koala / dynamicjava / parser / resources / messages.properties
Encoding:
Text File  |  2000-03-14  |  1.2 KB  |  21 lines

  1. abstract.abstract             = Duplicate 'abstract' modifier
  2. abstract.final                = Can't be abstract and final
  3. abstract.native               = Can't be abstract and native
  4. expression.statement          = Expression statement required
  5. final.final                   = Duplicate 'final' modifier
  6. left.expression.in.assignment = Bad left expression in assignment
  7. native.native                 = Duplicate 'native' modifier
  8. parameter.list                = Misplaced argument list
  9. private.private               = Duplicate 'private' modifier
  10. protected.private             = Can't be 'protected' and 'private'
  11. protected.protected           = Duplicate 'protected' modifier
  12. public.private                = Can't be 'public' and 'private'
  13. public.protected              = Can't be 'public' and 'protected'
  14. public.public                 = Duplicate 'public' modifier
  15. static.static                 = Duplicate 'static' modifier
  16. synchronized.synchronized     = Duplicate 'synchronized' modifier
  17. this.prefix                   = Bad 'this' qualifier
  18. transient.transient           = Duplicate 'transient' modifier
  19. try.without.catch             = 'try' without 'catch'
  20. volatile.volatile             = Duplicate 'volatile' modifier
  21.